home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 44 / Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso / -serious- / wb / merlin / internet.mcp < prev    next >
Text File  |  1999-07-12  |  2KB  |  99 lines

  1.  
  2.  
  3.  
  4. ; Define labels for pens (optional)
  5.  
  6. PEN  #0  Grey
  7. PEN  #1  Black
  8. PEN  #2  White
  9. PEN  #3  Blue
  10.  
  11. PEN  #4  DGrey
  12. PEN  #5  LGrey
  13. PEN  #6  Beige
  14. PEN  #7  LBlue
  15.  
  16. PEN  #8  Yellow
  17. PEN  #9  Red
  18. PEN  #10 LGreen
  19. PEN  #11 DGreen
  20.  
  21. PEN  #12 Orange
  22. PEN  #13 Cyan
  23. PEN  #14 Brown
  24. PEN  #15 Beige
  25.  
  26.  
  27.  
  28.  
  29. ; SpaceAroundWindow X Y , SpaceAroundGroup X Y 
  30. ; SpaceAroundObject X Y , LineThickness    X Y
  31.  
  32. SAW  2  1        ; 0 0
  33. SAG  3  2        ; 5 3   3 2
  34. SAO  2  1        ; 2 1
  35. LTX  2  1        ; 2 1
  36.  
  37.  
  38. ; FONT   "Fontname.font"  FontSize  Label
  39.  
  40. FONT  "Topaz.font"       8    ButtonFont
  41.  
  42.  
  43. ; IFF    "path/picture.iff"   Label
  44.  
  45.  
  46. ; default size of strings and buttons in characters
  47.  
  48. DEFAULTSIZE   10
  49. WINDOWCOLOR   grey
  50. WINDOWTITLE   "Internet"
  51.  
  52. SAVEWINDOWPOS
  53. ; WINDOWPOS  20  20
  54.  
  55.  
  56.  
  57. HGROUP
  58.  
  59.  
  60.  VGROUP  BORDERUP  BCOLOR lgrey
  61.   TEXT    "Internet"         BORDERDOWN   BCOLOR dgrey
  62.   BUTTON  "Online"     RUN "rx mcp:rexx/miamiOnline.rexx"     BCOLOR blue
  63.   BUTTON  "Offline"    RUN "rx mcp:rexx/miamiOffline.rexx"    BCOLOR blue
  64.  ENDGROUP
  65.  
  66.  VGROUP  BORDERUP  BCOLOR lgrey
  67.   TEXT    "Chat"              BORDERDOWN   BCOLOR dgrey
  68.   BUTTON  "IRC 1.1"    RUN "dh2:inet/irc/amirc"        BCOLOR lblue
  69.   BUTTON  "IRC 2.2"    RUN "dh2:inet/irc2/amirc"       BCOLOR lblue
  70.   BUTTON  "ICQ"        RUN "dh2:inet/stricq/stricq"    BCOLOR beige  STACK 16000
  71.  ENDGROUP
  72.  
  73.  
  74.  VGROUP  BORDERUP  BCOLOR lgrey
  75.   TEXT    "Browse"              BORDERDOWN   BCOLOR dgrey
  76.   BUTTON  "IBrowse"    RUN "dh2:inet/ibrowse/ibrowse"  BCOLOR lblue
  77.   BUTTON  "Voyager"    RUN "dh2:inet/Voyager/V030"     BCOLOR lblue
  78.   BUTTON  "Aweb"       RUN "dh2:inet/Aweb/Aweb"        BCOLOR lblue
  79.  ENDGROUP
  80.  
  81.  VGROUP
  82.  
  83.   VGROUP  BORDERUP  BCOLOR lgrey
  84.    TEXT    "Mail"                BORDERDOWN   BCOLOR dgrey
  85. ;   BUTTON  "Yam"        RUN "yam:yam"         BCOLOR lblue
  86.    BUTTON  "DoMail"     RUN "rx mcp:rexx/domail.rexx"   BCOLOR lblue
  87.   ENDGROUP
  88.  
  89.   VGROUP  BORDERUP  BCOLOR lgrey
  90.    TEXT    "Games"                BORDERDOWN   BCOLOR dgrey
  91.    BUTTON  "Netwar"        RUN "dh2:inet/netwar/nwclient"  BCOLOR lblue STACK 20000
  92.   ENDGROUP
  93.  
  94.  ENDGROUP
  95.  
  96.  
  97. ENDGROUP
  98.  
  99.